home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 727 / 2view / getinfo.rx < prev    next >
Text File  |  1995-03-18  |  927b  |  64 lines

  1.  
  2. /* 2View sample ARexx script*/
  3. /* This gets information about the currently displayed picture, then */
  4. /* advances to the next picture */
  5.  
  6. address "2View.1"
  7.  
  8. options results
  9.  
  10. pictoback
  11.  
  12. 'get name'
  13. say 'Name:' result
  14.  
  15. 'get width'
  16. say 'Width: ' result
  17.  
  18. 'get height'
  19. say 'Height: ' result
  20.  
  21. 'get depth'
  22. say 'Depth:' result
  23.  
  24. 'get viewmodes'
  25. say 'Viewmodes:' result
  26.  
  27. 'get specialmodes'
  28. say 'Special modes: ' result
  29.  
  30. time=4;
  31.  
  32. 'get timeperpicture'
  33. time=result
  34. if time==0 then say 'Not timed'
  35. else say 'Timed:  'time' jiffies per picture'
  36.  
  37. if time~==0 then do
  38. 'get timeleft'
  39. say 'Timeleft: ' result
  40. time=result
  41. say 'Which equals ' time/50 ' seconds'
  42. end
  43.  
  44. 'get playlistname'
  45. say 'Playlist filename: 'result
  46.  
  47. 'get looping'
  48. say 'Looping?' result
  49.  
  50. 'get printpictures'
  51. say 'Print pictures? 'result
  52.  
  53. 'get cyclestatus'
  54. say 'cycle status: ' result
  55.  
  56. 'get cyclerate'
  57. say 'cycle rate: ' result
  58.  
  59. 'get version'
  60. say 'This is 2View 'result
  61.  
  62. advance
  63.  
  64.